From 8b38db33899654d1923284bee44985a058f790c0 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 28 Apr 1993 20:31:02 +0000 Subject: [PATCH] (gnus-inews-organization): If ORGANIZATION is "", set it to nil. --- lisp/gnuspost.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/gnuspost.el b/lisp/gnuspost.el index b252f27dcf9..9c00482c095 100644 --- a/lisp/gnuspost.el +++ b/lisp/gnuspost.el @@ -1,6 +1,6 @@ ;;; gnuspost.el --- post news commands for GNUS newsreader -;; Copyright (C) 1989, 1990 Free Software Foundation, Inc. +;; Copyright (C) 1989, 1990, 1993 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Keywords: news @@ -644,6 +644,8 @@ containing the organization." (let ((organization (or (getenv "ORGANIZATION") gnus-your-organization (expand-file-name "~/.organization" nil)))) + (if (equal organization "") + (setq organization nil)) (and (stringp organization) (string-equal (substring organization 0 1) "/") ;; Get it from the user and system file. -- 2.30.2